home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / Net / netent.pm < prev    next >
Text File  |  2006-04-25  |  4KB  |  170 lines

  1. package Net::netent;
  2. use strict;
  3.  
  4. use 5.006_001;
  5. our $VERSION = '1.00';
  6. our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
  7. BEGIN { 
  8.     use Exporter   ();
  9.     @EXPORT      = qw(getnetbyname getnetbyaddr getnet);
  10.     @EXPORT_OK   = qw(
  11.             $n_name            @n_aliases
  12.             $n_addrtype     $n_net
  13.            );
  14.     %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
  15. }
  16. use vars      @EXPORT_OK;
  17.  
  18. # Class::Struct forbids use of @ISA
  19. sub import { goto &Exporter::import }
  20.  
  21. use Class::Struct qw(struct);
  22. struct 'Net::netent' => [
  23.    name        => '$',
  24.    aliases    => '@',
  25.    addrtype    => '$',
  26.    net        => '$',
  27. ];
  28.  
  29. sub populate (@) {
  30.     return unless @_;
  31.     my $nob = new();
  32.     $n_name      =    $nob->[0]              = $_[0];
  33.     @n_aliases     = @{ $nob->[1] } = split ' ', $_[1];
  34.     $n_addrtype  =    $nob->[2]          = $_[2];
  35.     $n_net     =    $nob->[3]          = $_[3];
  36.     return $nob;
  37.  
  38. sub getnetbyname ($)  { populate(CORE::getnetbyname(shift)) } 
  39.  
  40. sub getnetbyaddr ($;$) { 
  41.     my ($net, $addrtype);
  42.     $net = shift;
  43.     require Socket if @_;
  44.     $addrtype = @_ ? shift : Socket::AF_INET();
  45.     populate(CORE::getnetbyaddr($net, $addrtype)) 
  46.  
  47. sub getnet($) {
  48.     if ($_[0] =~ /^\d+(?:\.\d+(?:\.\d+(?:\.\d+)?)?)?$/) {
  49.     require Socket;
  50.     &getnetbyaddr(Socket::inet_aton(shift));
  51.     } else {
  52.     &getnetbyname;
  53.     } 
  54.  
  55. 1;
  56. __END__
  57.  
  58. =head1 NAME
  59.  
  60. Net::netent - by-name interface to Perl's built-in getnet*() functions
  61.  
  62. =head1 SYNOPSIS
  63.  
  64.  use Net::netent qw(:FIELDS);
  65.  getnetbyname("loopback")         or die "bad net";
  66.  printf "%s is %08X\n", $n_name, $n_net;
  67.  
  68.  use Net::netent;
  69.  
  70.  $n = getnetbyname("loopback")         or die "bad net";
  71.  { # there's gotta be a better way, eh?
  72.      @bytes = unpack("C4", pack("N", $n->net));
  73.      shift @bytes while @bytes && $bytes[0] == 0;
  74.  }
  75.  printf "%s is %08X [%d.%d.%d.%d]\n", $n->name, $n->net, @bytes;
  76.  
  77. =head1 DESCRIPTION
  78.  
  79. This module's default exports override the core getnetbyname() and
  80. getnetbyaddr() functions, replacing them with versions that return
  81. "Net::netent" objects.  This object has methods that return the similarly
  82. named structure field name from the C's netent structure from F<netdb.h>;
  83. namely name, aliases, addrtype, and net.  The aliases 
  84. method returns an array reference, the rest scalars.  
  85.  
  86. You may also import all the structure fields directly into your namespace
  87. as regular variables using the :FIELDS import tag.  (Note that this still
  88. overrides your core functions.)  Access these fields as variables named
  89. with a preceding C<n_>.  Thus, C<$net_obj-E<gt>name()> corresponds to
  90. $n_name if you import the fields.  Array references are available as
  91. regular array variables, so for example C<@{ $net_obj-E<gt>aliases()
  92. }> would be simply @n_aliases.
  93.  
  94. The getnet() function is a simple front-end that forwards a numeric
  95. argument to getnetbyaddr(), and the rest
  96. to getnetbyname().
  97.  
  98. To access this functionality without the core overrides,
  99. pass the C<use> an empty import list, and then access
  100. function functions with their full qualified names.
  101. On the other hand, the built-ins are still available
  102. via the C<CORE::> pseudo-package.
  103.  
  104. =head1 EXAMPLES
  105.  
  106. The getnet() functions do this in the Perl core:
  107.  
  108.     sv_setiv(sv, (I32)nent->n_net);
  109.  
  110. The gethost() functions do this in the Perl core:
  111.  
  112.     sv_setpvn(sv, hent->h_addr, len);
  113.  
  114. That means that the address comes back in binary for the
  115. host functions, and as a regular perl integer for the net ones.
  116. This seems a bug, but here's how to deal with it:
  117.  
  118.  use strict;
  119.  use Socket;
  120.  use Net::netent;
  121.  
  122.  @ARGV = ('loopback') unless @ARGV;
  123.  
  124.  my($n, $net);
  125.  
  126.  for $net ( @ARGV ) {
  127.  
  128.      unless ($n = getnetbyname($net)) {
  129.      warn "$0: no such net: $net\n";
  130.      next;
  131.      }
  132.  
  133.      printf "\n%s is %s%s\n", 
  134.          $net, 
  135.          lc($n->name) eq lc($net) ? "" : "*really* ",
  136.          $n->name;
  137.  
  138.      print "\taliases are ", join(", ", @{$n->aliases}), "\n"
  139.          if @{$n->aliases};     
  140.  
  141.      # this is stupid; first, why is this not in binary?
  142.      # second, why am i going through these convolutions
  143.      # to make it looks right
  144.      {
  145.      my @a = unpack("C4", pack("N", $n->net));
  146.      shift @a while @a && $a[0] == 0;
  147.      printf "\taddr is %s [%d.%d.%d.%d]\n", $n->net, @a;
  148.      }
  149.  
  150.      if ($n = getnetbyaddr($n->net)) {
  151.      if (lc($n->name) ne lc($net)) {
  152.          printf "\tThat addr reverses to net %s!\n", $n->name;
  153.          $net = $n->name;
  154.          redo;
  155.      } 
  156.      }
  157.  }
  158.  
  159. =head1 NOTE
  160.  
  161. While this class is currently implemented using the Class::Struct
  162. module to build a struct-like class, you shouldn't rely upon this.
  163.  
  164. =head1 AUTHOR
  165.  
  166. Tom Christiansen
  167.